home *** CD-ROM | disk | FTP | other *** search
/ Joystick Magazine 2000 November / cd joystick no120 novembre 2000 cd 1.iso / data / demos / gunlok / data1.cab / Program_Executable_Files / scripts / pylon_normal.gsh < prev    next >
Text File  |  2000-08-22  |  917b  |  32 lines

  1. // defines a normal pylon
  2. ////////////////////////////////////////////////////////////////////////////////////
  3.  
  4. // start wrapper - prevent multiple inclusions or recursive inclusions
  5.  
  6. //(this currently causes 'unrecognized preprocessor directive' warnings, until implemented)
  7. #ifndef INCLUDED_PYLON_NORMAL_GSH
  8. #define INCLUDED_PYLON_NORMAL_GSH
  9.  
  10. #include "pylon_frag.gsh"
  11.  
  12. ////////////////////////////////////////////////////////////////////////////////////
  13.  
  14. shape Shp_Force_Pylon_A
  15. {
  16.        file "objects\Level 01 PRISON PYLON.rif"
  17.        name "FORCE PYLON A"
  18. }
  19.  
  20. role Rol_force_pylon_a : Rol_PlacedObject
  21. {
  22.     shape        Shp_Force_Pylon_A
  23.     identifier "pylon"
  24.     destructibility Frg_Pylon
  25.     armour        25
  26. }
  27.  
  28. ////////////////////////////////////////////////////////////////////////////////////
  29.  
  30. // end wrapper - for preventing multiple or recursive inclusions
  31. #endif // !INCLUDED_PYLON_NORMAL_GSH
  32.